home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / util / rexx / rmh.lha / RMH / Examples / prname.rexx < prev    next >
OS/2 REXX Batch file  |  2001-05-24  |  253b  |  8 lines

  1. /**/
  2.  
  3. l="rmh.library";if ~show("L",l) then;if ~addlib(l,0,-30) then exit
  4. say "ProgramName():" ProgramName()
  5. say "ProgramName("full"): " ProgramName("full")
  6. say "ProgramName("noext"):" ProgramName("noext")
  7. say "ProgramName("path"): " ProgramName("path")
  8.